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

Таблицы в sqlite, описанные в дата-каталоге, не создаются без create_table=True (при использовании нескольких dbconn) #300

Open
puritanne opened this issue Jan 9, 2024 · 0 comments

Comments

@puritanne
Copy link
Contributor

puritanne commented Jan 9, 2024

Структура каталога:

catalog = Catalog(
    {
        "prompts": Table(
            store=TableStoreDB(
                dbconn=dbconn_data,
                name='prompts',
                data_sql_schema=[
                    Column("prompt_id", String, primary_key=True),
                    Column("text", String),
                ],
              create_table=True,
            )
        ),
        "examples": Table(
            store=TableStoreDB(
                dbconn=dbconn_data,
                name='examples',
                data_sql_schema=[
                    Column("example_id", Integer, primary_key=True),
                    Column("prompt_id", String),
                    Column("example", String),
                ],
               create_table=True,
            )
        ),
        "output": Table(
            store=TableStoreDB(
                dbconn=dbconn_data,
                name='output',
                data_sql_schema=[
                    Column("prompt_id", String, primary_key=True),
                    Column("example_id", Integer, primary_key=True),
                    Column("prompt_text", String),
                    Column("input_text", String),
                    Column("answer_text", String),
                ],
               create_table=True,
            )
        ),
    }
)

Если закомментировать create_table=True, то при вызове datapipe db create-all таблицы созданы не будут.

@puritanne puritanne changed the title Таблицы в sqlite, описанные в дата-каталоге, не создаются без create_table=True Таблицы в sqlite, описанные в дата-каталоге, не создаются без create_table=True (при использовании нескольких dbconn) Jan 9, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant