Support for Starrocks #1562
Unanswered
maver1ck
asked this question in
Usage Questions
Replies: 1 comment 14 replies
-
Generally speaking Alembic should have plugable way of defining |
Beta Was this translation helpful? Give feedback.
14 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I'm working on support for Starrocks dialect in Alembic.
The problem is that Starrocks support updates only on non-primary key columns in table that has different primary key.
As a result I want to create
alembic_version
table with following structure:I'd like to create similar patch to Clickhouse dialect.
Source:
https://github.com/xzkostyan/clickhouse-sqlalchemy/blob/master/clickhouse_sqlalchemy/alembic/dialect.py#L39
My version:
The main problem is that alembic assumes that first column in
alembic_version
table isversion_num
.As a result of this analysis I created PR to alembic repo that will select only
version_num
column even ifalembic_version
table has more than one column.#1561
Unfortunally it was discarded.
How to proceed with this problem ?
Beta Was this translation helpful? Give feedback.
All reactions