summaryrefslogtreecommitdiff
path: root/continuedev/src
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-06-07 17:52:34 -0400
committerNate Sesti <sestinj@gmail.com>2023-06-07 17:52:34 -0400
commitbe2b761226a73c7fbd4ec0892bc823715c115b52 (patch)
treea6143315b0d333b1345e94c607f208ffc9ce2bff /continuedev/src
parentc51c6515b3937b1e02d77b684dc6a83ec5edf528 (diff)
downloadsncontinue-be2b761226a73c7fbd4ec0892bc823715c115b52.tar.gz
sncontinue-be2b761226a73c7fbd4ec0892bc823715c115b52.tar.bz2
sncontinue-be2b761226a73c7fbd4ec0892bc823715c115b52.zip
fixed duckdb table name
Diffstat (limited to 'continuedev/src')
-rw-r--r--continuedev/src/continuedev/recipes/CreatePipelineRecipe/steps.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/continuedev/src/continuedev/recipes/CreatePipelineRecipe/steps.py b/continuedev/src/continuedev/recipes/CreatePipelineRecipe/steps.py
index 511abd1f..8c4ed8f7 100644
--- a/continuedev/src/continuedev/recipes/CreatePipelineRecipe/steps.py
+++ b/continuedev/src/continuedev/recipes/CreatePipelineRecipe/steps.py
@@ -134,7 +134,7 @@ class ValidatePipelineStep(Step):
# load the data into the DuckDB instance
await sdk.run(f'python3 {filename}', name="Load data into DuckDB", description=f"Running python3 {filename} to load data into DuckDB")
- table_name = f"{source_name}.{source_name}_resource"
+ table_name = f"{source_name}_data.{source_name}_resource"
tables_query_code = dedent(f'''\
import duckdb