mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-30 20:43:50 -06:00
27 lines
1.1 KiB
JSON
27 lines
1.1 KiB
JSON
{
|
|
"table_insert_update_cases": {
|
|
"add_update": {
|
|
"1": [1, "1", "int", "Value at 0 index is actual value(to be inserted), Value at index 1 is expected value, int is column type"],
|
|
"2": ["", "1", "int"],
|
|
"3": ["", "[null]", "int"],
|
|
"4": ["", "Hello World", "text"],
|
|
"5": ["\"\"", "", "text", "Two double quotes"],
|
|
"6": ["\\\"\\\"", "\"\"", "text", "double backslash followed by a double quote"],
|
|
"7": ["\\\\\"\\\\\"", "\\\\\"\\\\\"", "text", "double backslash followed by a double quote"],
|
|
"8": ["", "[null]", "text"],
|
|
"9": ["", "[51,52]", "json"],
|
|
"10": ["[61,62]", "[61,62]", "json"],
|
|
"11": ["", "true", "bool"],
|
|
"12": ["", "[null]", "bool"],
|
|
"13": ["", "false", "bool"],
|
|
"14": ["", "[null]", "text[]"],
|
|
"15": ["{}", "{}", "text[]"],
|
|
"16": ["{data,NULL,'',\"\"}", "{data,NULL,'',\"\"}", "text[]"],
|
|
"17": ["{}", "{}", "int[]"],
|
|
"18": ["{123,,456}", "{123,NULL,456}", "int[]"],
|
|
"19": ["", "[null]", "boolean[]"],
|
|
"20": ["{false,null,true}", "{f,NULL,t}", "boolean[]"]
|
|
}
|
|
}
|
|
}
|