jrgemignani commented on code in PR #1564:
URL: https://github.com/apache/age/pull/1564#discussion_r1480619687
##########
sql/age_main.sql:
##########
@@ -122,17 +122,23 @@ CREATE FUNCTION ag_catalog.drop_label(graph_name name,
label_name name,
LANGUAGE c
AS 'MODULE_PATHNAME';
+--
+-- If `load_as_agtype` is true, property values are loaded as agtype; otherwise
+-- loaded as string.
+--
CREATE FUNCTION ag_catalog.load_labels_from_file(graph_name name,
label_name name,
file_path text,
- id_field_exists bool default
true)
+ id_field_exists bool default
true,
+ load_as_agtype bool default
false)
RETURNS void
LANGUAGE c
AS 'MODULE_PATHNAME';
CREATE FUNCTION ag_catalog.load_edges_from_file(graph_name name,
Review Comment:
This needs to be added to the age--1.5.0--y.y.y.sql file
##########
sql/age_main.sql:
##########
@@ -122,17 +122,23 @@ CREATE FUNCTION ag_catalog.drop_label(graph_name name,
label_name name,
LANGUAGE c
AS 'MODULE_PATHNAME';
+--
+-- If `load_as_agtype` is true, property values are loaded as agtype; otherwise
+-- loaded as string.
+--
CREATE FUNCTION ag_catalog.load_labels_from_file(graph_name name,
Review Comment:
This needs to be added to the `age--1.5.0--y.y.y.sql` file
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]