Commit 3156569
committed
ci: use underscore in E2E_TABLE_SUFFIX node prefix, not hyphen
E2E tests build SQL identifiers as `..._${E2E_TABLE_SUFFIX}`.
Hyphens aren't valid in unquoted SQL identifiers, so the previous
`-node${matrix.node-version}` suffix caused all e2e jobs to fail
with INVALID_IDENTIFIER (SQLSTATE 42602):
DROP TABLE IF EXISTS dbsql_nodejs_sdk_e2e_interval_types_<sha>-node20
^
Use `_node<version>` instead. The underscore keeps identifiers
valid across all matrix entries.
Co-authored-by: Isaac
Signed-off-by: Vikrant Puppala <vikrant.puppala@databricks.com>1 parent a440860 commit 3156569
1 file changed
Lines changed: 4 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
211 | 211 | | |
212 | 212 | | |
213 | 213 | | |
214 | | - | |
215 | | - | |
| 214 | + | |
| 215 | + | |
| 216 | + | |
| 217 | + | |
216 | 218 | | |
217 | 219 | | |
218 | 220 | | |
| |||
0 commit comments