Changeset: a25bdab240bc for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/a25bdab240bc
Modified Files:
        sql/backends/monet5/UDF/pyapi3/Tests/pyapi3_13.test
Branch: Mar2025
Log Message:

Add comments back that were lost in conversion to .test format.


diffs (51 lines):

diff --git a/sql/backends/monet5/UDF/pyapi3/Tests/pyapi3_13.test 
b/sql/backends/monet5/UDF/pyapi3/Tests/pyapi3_13.test
--- a/sql/backends/monet5/UDF/pyapi3/Tests/pyapi3_13.test
+++ b/sql/backends/monet5/UDF/pyapi3/Tests/pyapi3_13.test
@@ -11,6 +11,7 @@ language P
 }
 
 statement ok
+# "normal" indentation
 CREATE FUNCTION pyapi13_mult(i integer,j integer) returns integer
 language PYTHON_MAP
 {
@@ -26,6 +27,7 @@ statement ok
 DROP FUNCTION pyapi13_mult
 
 statement ok
+# weird indentation
 CREATE FUNCTION pyapi13_mult(i integer,j integer) returns integer
 language PYTHON_MAP { return(i*j)
 }
@@ -39,6 +41,7 @@ statement ok
 DROP FUNCTION pyapi13_mult
 
 statement ok
+# no new line
 CREATE FUNCTION pyapi13_mult(i integer,j integer) returns integer language 
PYTHON_MAP { return(i*j) }
 
 query I rowsort
@@ -50,6 +53,7 @@ statement ok
 DROP FUNCTION pyapi13_mult
 
 statement ok
+# \n in string
 CREATE FUNCTION pyapi13_mult(i integer,j integer) returns integer
 language PYTHON_MAP
 {
@@ -67,6 +71,7 @@ statement ok
 DROP FUNCTION pyapi13_mult
 
 statement ok
+# multiline statement
 CREATE FUNCTION pyapi13_mult(i integer,j integer) returns integer
 language PYTHON_MAP
 {
@@ -91,6 +96,7 @@ statement ok
 DROP FUNCTION pyapi13_mult
 
 statement ok
+# inconsistent indentation (mix spaces and tabs, weird indentation)
 CREATE FUNCTION pyapi13_mult(i integer,j integer) returns integer
 language PYTHON_MAP
 {
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to