Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unexpected parsing error in MySQL node #992

Open
5 tasks
werkstrom opened this issue Apr 30, 2023 · 0 comments
Open
5 tasks

Unexpected parsing error in MySQL node #992

werkstrom opened this issue Apr 30, 2023 · 0 comments

Comments

@werkstrom
Copy link

Which node are you reporting an issue on?

MySQL

What are the steps to reproduce?

Set this query as tobic and run:
INSERT INTO homeassistant.entity_attributes_import (entity_id, attribute, value) VALUES ('media_player.skynetone', 'entity_picture', '/api/media_player_proxy/media_player.skynetone?token=1452c5572b1d7c02b1530d22f002cf7f135ee1d8ef8d429772ea052922ac8f41&cache=0f2f2623bb4719af');

SQL to create the table:
CREATE TABLE
entity_attributes_import (
id int(10) unsigned NOT NULL AUTO_INCREMENT,
entity_id varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
attribute varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
value varchar(4000) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
createTime timestamp NOT NULL DEFAULT current_timestamp(),
PRIMARY KEY (id),
UNIQUE KEY entity_attribute_value (entity_id, attribute, value) USING HASH,
UNIQUE KEY attribute_value_entity (attribute, value, entity_id) USING HASH
) ENGINE = InnoDB AUTO_INCREMENT = 398 DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci

What happens?

I get an error:
Error: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'media_player.skynetone', 'entity_picture', '/api/media_player_proxy/media_pla...' at line 1

What do you expect to happen?

There is no error in the syntax (afaik) and the query runs just fine from other tools (copy pasted) so it should run

Please tell us about your environment:

  • Node-RED version: 3.0.2 (home assistant)
  • node.js version: Unknown
  • npm version: Unknown
  • Platform/OS: (Home Assistant)
  • Browser: (chrome)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant