[plsql] Fix build: table is a reserved word so can't be used as a table name

This commit is contained in:
Andreas Dangel
2019-01-27 11:34:01 +01:00
parent 76f6ceab79
commit df169f7027

View File

@ -18,7 +18,7 @@ BEGIN
SELECT value
INTO v_value
FROM table
FROM mytable
WHERE colname = utils.get_colname('COLUMN_ID');
END;