这是indexloc提供的服务,不要输入任何密码
Skip to content

errors in track_table query are not captured when part of run_sql #392

@0x777

Description

@0x777

To reproduce, go to SQL window in console and run

CREATE TABLE testTbl (id INT);

The regular expression seems to capture the table name as testTbl and the track_table request is to track the table testTbl. But postgres converts identifiers to lower case unless they are quoted. This results in a track_table error.

This will not work even if quoted.

CREATE TABLE "testTbl" (id INT);

In this case, the regular expression captures the table name as "testTbl" but it should be testTbl.

Metadata

Metadata

Assignees

Labels

c/consoleRelated to consolek/bugSomething isn't workingp/urgentImmediate action required

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions