Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Removetime_range_endpoints from query context object #19423

Merged
merged 8 commits into from
Mar 31, 2022
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
"""rm_time_range_endpoints_from_qc

Revision ID: 2ed890b36b94
Revises: 58df9d617f14
Create Date: 2022-03-29 18:03:48.977741

"""

# revision identifiers, used by Alembic.
revision = "2ed890b36b94"
down_revision = "58df9d617f14"

import json

import sqlalchemy as sa
from alembic import op
from sqlalchemy.dialects import postgresql
from sqlalchemy.ext.declarative import declarative_base

from superset import db

Base = declarative_base()


class MyModel(Base):
__tablename__ = "MyModel"
id = sa.Column(sa.Integer, primary_key=True)
queries = sa.Column(sa.Text)
hughhhh marked this conversation as resolved.
Show resolved Hide resolved


def upgrade():
bind = op.get_bind()
session = db.Session(bind=bind)

for m in session.query(MyModel):
queries = json.loads(m.queries)
for q in queries:
extras = q.get("extras")
if extras:
extras.pop("time_range_endpoints", None)
m.queries = json.dumps(queries)
hughhhh marked this conversation as resolved.
Show resolved Hide resolved

session.commit()
session.close()


def downgrade():
pass