Skip to content

Commit 8bd2ded

Browse files
committed
Fixes issue #173. The proper way to allow reserve words in Impala is to use back ticks.
1 parent 0ac0f4b commit 8bd2ded

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Impala/OMOP CDM impala ddl.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ CREATE TABLE cdm_source
374374

375375

376376

377-
CREATE TABLE "metadata"
377+
CREATE TABLE `metadata`
378378
(
379379

380380
metadata_concept_id INTEGER,
@@ -903,7 +903,7 @@ CREATE TABLE note_nlp
903903

904904
snippet VARCHAR(250),
905905

906-
"offset" VARCHAR(250),
906+
`offset` VARCHAR(250),
907907

908908
lexical_variant VARCHAR(250),
909909

@@ -1008,7 +1008,7 @@ Standardized health system data
10081008

10091009

10101010

1011-
CREATE TABLE "location"
1011+
CREATE TABLE `location`
10121012
(
10131013

10141014
location_id INTEGER,

0 commit comments

Comments
 (0)