We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
By looking at the base.py it seems Array is supported, however I got an error
can't render element of type <class 'sqlalchemy_clickhouse.base.ARRAY'>
CREATE TABLE default.xxx ( name String, phone Array(String)) ENGINE = Memory()
#!/usr/bin/env python # Test engine and table from sqlalchemy import * from sqlalchemy.engine import create_engine from sqlalchemy.schema import * from sqlalchemy_clickhouse.base import dialect engine = create_engine('clickhouse://default:@localhost:8123/default') tbl = Table('xxx', MetaData(bind=engine), autoload=True) ddl = CreateTable(tbl).compile(dialect=dialect()) print(ddl)
Maybe my specific case -- print CREATE TABLE stmt isn't supported?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
By looking at the base.py it seems Array is supported, however I got an error
Steps to reproduce
Maybe my specific case -- print CREATE TABLE stmt isn't supported?
The text was updated successfully, but these errors were encountered: