This repository was archived by the owner on Jun 22, 2025. It is now read-only.
How does the bulk insert prevent code injection into the data when adding to the backend in bulk mode? #620
Skyhikeeper
started this conversation in
General
Replies: 1 comment
-
BulkCopy uses binary serialization of values. This means that there is no risk of SQL injection because the data is passed as a binary blob after the query, and read by ClickHouse as such. Hence, no sanitization is applied because it is not needed |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
How does the bulk insert prevent code injection into the data when adding to the backend in bulk mode?
In other words, data sanitization is it applied on bulk insert?
Beta Was this translation helpful? Give feedback.
All reactions