~ubuntu-branches/ubuntu/saucy/gnash/saucy-proposed

« back to all changes in this revision

Viewing changes to extensions/mysql/test.sql

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Sack
  • Date: 2008-10-13 14:29:49 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20081013142949-f6qdvnu4mn05ltdc
Tags: 0.8.4~~bzr9980-0ubuntu1
* new upstream release 0.8.4 (LP: #240325)
* ship new lib usr/lib/gnash/libmozsdk.so.* in mozilla-plugin-gnash
  - update debian/mozilla-plugin-gnash.install
* ship new lib usr/lib/gnash/libgnashnet.so.* in gnash-common
  - update debian/gnash-common.install
* add basic debian/build_head script to build latest CVS head packages.
  - add debian/build_head
* new sound architecture requires build depend on libsdl1.2-dev
  - update debian/control
* head build script now has been completely migrated to bzr (upstream +
  ubuntu)
  - update debian/build_head
* disable kde gui until klash/qt4 has been fixed; keep kde packages as empty
  packages for now.
  - update debian/rules
  - debian/klash.install
  - debian/klash.links
  - debian/klash.manpages
  - debian/konqueror-plugin-gnash.install
* drop libkonq5-dev build dependency accordingly
  - update debian/control
* don't install headers manually anymore. gnash doesnt provide a -dev
  package after all
  - update debian/rules
* update libs installed in gnash-common; libgnashserver-*.so is not available
  anymore (removed); in turn we add the new libgnashcore-*.so
  - update debian/gnash-common.install
* use -Os for optimization and properly pass CXXFLAGS=$(CFLAGS) to configure
  - update debian/rules
* touch firefox .autoreg in postinst of mozilla plugin
  - update debian/mozilla-plugin-gnash.postinst
* link gnash in ubufox plugins directory for the plugin alternative switcher
  - add debian/mozilla-plugin-gnash.links
* suggest ubufox accordingly
  - update debian/control
* add new required build-depends on libgif-dev
  - update debian/control
* add Xb-Npp-Description and Xb-Npp-File as new plugin database meta data
  - update debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
-- MySQL dump 10.10
 
2
--
 
3
-- Host: localhost    Database: gnash
 
4
-- ------------------------------------------------------
 
5
-- Server version       5.0.22
 
6
 
 
7
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
 
8
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
 
9
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
 
10
/*!40101 SET NAMES utf8 */;
 
11
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
 
12
/*!40103 SET TIME_ZONE='+00:00' */;
 
13
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
 
14
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
 
15
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
 
16
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
 
17
 
 
18
--
 
19
-- Table structure for table `test`
 
20
--
 
21
 
 
22
DROP TABLE IF EXISTS `test`;
 
23
CREATE TABLE `test` (
 
24
  `test-name` char(60) character set latin1 collate latin1_bin NOT NULL default '',
 
25
  `test-type` char(20) character set latin1 collate latin1_bin NOT NULL default ''
 
26
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
 
27
 
 
28
--
 
29
-- Dumping data for table `test`
 
30
--
 
31
 
 
32
 
 
33
/*!40000 ALTER TABLE `test` DISABLE KEYS */;
 
34
LOCK TABLES `test` WRITE;
 
35
INSERT INTO `test` VALUES ('foobar','arg'),('barfoo','gra'),('foo','bar'),('bar','foo'),('bar foo','foo bar');
 
36
UNLOCK TABLES;
 
37
/*!40000 ALTER TABLE `test` ENABLE KEYS */;
 
38
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
 
39
 
 
40
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
 
41
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
 
42
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
 
43
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
 
44
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
 
45
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
 
46
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
 
47