forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit36580c8
committed
PyGreSQL inserttable patch
=====================I suggested an improvement of the inserttable in the PyGreSQL interfacealready in January, but seemingly it was never implemented. I was told thisis the right place to get patches in for PyGreSQL, so I'm reposting my patchhere.I consider the inserttable methode essential in populating the databasebecause of its benefits in performance compared to insert, so I think thispatch is quite essential. The attachment is an improved version of thecorresponding pg_inserttable function in pgmodule.c, which fixes thefollowing problems:* The function raised exceptions because PyList_GetItem was used beyond thesize of the list. This was checked by comparing the result with NULL, butthe exception was not cleaned up, which could result in mysterious errors inthe following Python code. Instead of clearing the exception usingPyErr_Clear or something like that, I avoided throwing the exception at allby at first requesting the size of the list. Using this opportunity, I alsochecked the uniformity of the size of the rows passed in the lists/tuples.The function also accepts (and silently ignores) empty lists and sublists.* Python "None" values are now accepted and properly converted to PostgreSQLNULL values* The function now generates an error message in case of a line bufferoverflow* It copes with tabulators, newlines and backslashes in strings now* Rewrote the buffer filling code which should now run faster by avoidingunnecessary string copy operations forth and backChristoph Zwerschke1 parentd851f00 commit36580c8
1 file changed
+181
-98
lines changedLines changed: 181 additions & 98 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2324 | 2324 |
| |
2325 | 2325 |
| |
2326 | 2326 |
| |
2327 |
| - | |
2328 |
| - | |
2329 |
| - | |
2330 |
| - | |
2331 |
| - | |
2332 |
| - | |
2333 |
| - | |
2334 |
| - | |
2335 |
| - | |
2336 |
| - | |
| 2327 | + | |
| 2328 | + | |
| 2329 | + | |
| 2330 | + | |
| 2331 | + | |
| 2332 | + | |
| 2333 | + | |
| 2334 | + | |
| 2335 | + | |
| 2336 | + | |
| 2337 | + | |
2337 | 2338 |
| |
2338 |
| - | |
| 2339 | + | |
| 2340 | + | |
| 2341 | + | |
2339 | 2342 |
| |
2340 | 2343 |
| |
2341 | 2344 |
| |
| |||
2347 | 2350 |
| |
2348 | 2351 |
| |
2349 | 2352 |
| |
2350 |
| - | |
2351 |
| - | |
| 2353 | + | |
| 2354 | + | |
2352 | 2355 |
| |
2353 | 2356 |
| |
2354 | 2357 |
| |
2355 | 2358 |
| |
2356 | 2359 |
| |
| 2360 | + | |
| 2361 | + | |
2357 | 2362 |
| |
| 2363 | + | |
2358 | 2364 |
| |
| 2365 | + | |
| 2366 | + | |
2359 | 2367 |
| |
| 2368 | + | |
2360 | 2369 |
| |
2361 | 2370 |
| |
2362 | 2371 |
| |
2363 |
| - | |
| 2372 | + | |
2364 | 2373 |
| |
2365 | 2374 |
| |
2366 | 2375 |
| |
2367 |
| - | |
2368 |
| - | |
| 2376 | + | |
2369 | 2377 |
| |
2370 |
| - | |
| 2378 | + | |
| 2379 | + | |
2371 | 2380 |
| |
2372 |
| - | |
2373 |
| - | |
2374 |
| - | |
2375 |
| - | |
2376 |
| - | |
2377 |
| - | |
2378 |
| - | |
2379 |
| - | |
2380 |
| - | |
2381 |
| - | |
2382 |
| - | |
2383 |
| - | |
2384 |
| - | |
2385 |
| - | |
2386 |
| - | |
2387 |
| - | |
2388 |
| - | |
2389 |
| - | |
2390 |
| - | |
2391 |
| - | |
2392 |
| - | |
2393 |
| - | |
2394 |
| - | |
2395 |
| - | |
2396 |
| - | |
2397 |
| - | |
2398 |
| - | |
2399 |
| - | |
2400 |
| - | |
2401 |
| - | |
2402 |
| - | |
2403 |
| - | |
2404 |
| - | |
2405 |
| - | |
2406 |
| - | |
2407 |
| - | |
2408 |
| - | |
2409 |
| - | |
2410 |
| - | |
2411 |
| - | |
2412 |
| - | |
2413 |
| - | |
2414 |
| - | |
2415 |
| - | |
2416 |
| - | |
2417 |
| - | |
2418 |
| - | |
2419 |
| - | |
2420 |
| - | |
2421 |
| - | |
2422 |
| - | |
2423 |
| - | |
2424 |
| - | |
2425 |
| - | |
| 2381 | + | |
| 2382 | + | |
| 2383 | + | |
| 2384 | + | |
| 2385 | + | |
| 2386 | + | |
2426 | 2387 |
| |
2427 |
| - | |
2428 |
| - | |
2429 |
| - | |
2430 |
| - | |
2431 |
| - | |
| 2388 | + | |
| 2389 | + | |
| 2390 | + | |
2432 | 2391 |
| |
2433 |
| - | |
| 2392 | + | |
2434 | 2393 |
| |
2435 |
| - | |
2436 |
| - | |
2437 |
| - | |
2438 |
| - | |
2439 |
| - | |
| 2394 | + | |
| 2395 | + | |
| 2396 | + | |
| 2397 | + | |
| 2398 | + | |
| 2399 | + | |
2440 | 2400 |
| |
2441 | 2401 |
| |
| 2402 | + | |
| 2403 | + | |
| 2404 | + | |
| 2405 | + | |
| 2406 | + | |
| 2407 | + | |
| 2408 | + | |
| 2409 | + | |
| 2410 | + | |
| 2411 | + | |
| 2412 | + | |
| 2413 | + | |
| 2414 | + | |
| 2415 | + | |
| 2416 | + | |
| 2417 | + | |
| 2418 | + | |
| 2419 | + | |
| 2420 | + | |
| 2421 | + | |
2442 | 2422 |
| |
2443 | 2423 |
| |
2444 |
| - | |
2445 |
| - | |
2446 |
| - | |
| 2424 | + | |
2447 | 2425 |
| |
2448 | 2426 |
| |
2449 | 2427 |
| |
2450 |
| - | |
2451 |
| - | |
2452 |
| - | |
| 2428 | + | |
2453 | 2429 |
| |
2454 |
| - | |
2455 |
| - | |
| 2430 | + | |
| 2431 | + | |
| 2432 | + | |
| 2433 | + | |
| 2434 | + | |
| 2435 | + | |
| 2436 | + | |
| 2437 | + | |
| 2438 | + | |
| 2439 | + | |
| 2440 | + | |
| 2441 | + | |
| 2442 | + | |
| 2443 | + | |
| 2444 | + | |
| 2445 | + | |
| 2446 | + | |
| 2447 | + | |
| 2448 | + | |
| 2449 | + | |
| 2450 | + | |
| 2451 | + | |
| 2452 | + | |
| 2453 | + | |
| 2454 | + | |
| 2455 | + | |
| 2456 | + | |
| 2457 | + | |
| 2458 | + | |
| 2459 | + | |
| 2460 | + | |
| 2461 | + | |
| 2462 | + | |
| 2463 | + | |
| 2464 | + | |
| 2465 | + | |
| 2466 | + | |
| 2467 | + | |
| 2468 | + | |
| 2469 | + | |
| 2470 | + | |
| 2471 | + | |
| 2472 | + | |
| 2473 | + | |
| 2474 | + | |
| 2475 | + | |
| 2476 | + | |
| 2477 | + | |
| 2478 | + | |
| 2479 | + | |
| 2480 | + | |
| 2481 | + | |
| 2482 | + | |
| 2483 | + | |
| 2484 | + | |
| 2485 | + | |
| 2486 | + | |
| 2487 | + | |
| 2488 | + | |
| 2489 | + | |
| 2490 | + | |
| 2491 | + | |
| 2492 | + | |
| 2493 | + | |
| 2494 | + | |
| 2495 | + | |
| 2496 | + | |
| 2497 | + | |
| 2498 | + | |
| 2499 | + | |
| 2500 | + | |
| 2501 | + | |
| 2502 | + | |
| 2503 | + | |
| 2504 | + | |
| 2505 | + | |
| 2506 | + | |
| 2507 | + | |
| 2508 | + | |
| 2509 | + | |
| 2510 | + | |
| 2511 | + | |
| 2512 | + | |
| 2513 | + | |
| 2514 | + | |
| 2515 | + | |
| 2516 | + | |
| 2517 | + | |
| 2518 | + | |
| 2519 | + | |
| 2520 | + | |
| 2521 | + | |
| 2522 | + | |
| 2523 | + | |
| 2524 | + | |
| 2525 | + | |
| 2526 | + | |
| 2527 | + | |
| 2528 | + | |
| 2529 | + | |
| 2530 | + | |
| 2531 | + | |
| 2532 | + | |
| 2533 | + | |
| 2534 | + | |
2456 | 2535 |
| |
2457 |
| - | |
| 2536 | + | |
2458 | 2537 |
| |
2459 |
| - | |
2460 |
| - | |
2461 |
| - | |
| 2538 | + | |
2462 | 2539 |
| |
2463 |
| - | |
2464 |
| - | |
2465 |
| - | |
2466 |
| - | |
| 2540 | + | |
| 2541 | + | |
| 2542 | + | |
| 2543 | + | |
| 2544 | + | |
| 2545 | + | |
| 2546 | + | |
| 2547 | + | |
| 2548 | + | |
| 2549 | + | |
2467 | 2550 |
| |
2468 | 2551 |
| |
2469 | 2552 |
| |
|
0 commit comments
Comments
(0)