mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00
13 lines
321 B
PHP
Executable file
13 lines
321 B
PHP
Executable file
--TEST--
|
|
sqlite: crash on bad queries inside sqlite_array_query()
|
|
--SKIPIF--
|
|
<?php # vim:ft=php
|
|
if (!extension_loaded("sqlite")) print "skip"; ?>
|
|
--FILE--
|
|
<?php
|
|
include "blankdb.inc";
|
|
|
|
sqlite_array_query($db, "SELECT foo FROM foobar");
|
|
?>
|
|
--EXPECTF--
|
|
Warning: sqlite_array_query(): no such table: foobar in %s on line %d
|