author | Radek Brich <radek.brich@devl.cz> |
Sat, 29 Sep 2012 13:53:54 +0200 | |
changeset 49 | 08e4dfe1b0cb |
parent 44 | 4fe39c59c515 |
permissions | -rw-r--r-- |
2 | 1 |
### named connections |
2 |
databases = { |
|
49
08e4dfe1b0cb
Add test for MyManager (enable only when MySQLdb is available). Configure tests using pgtoolkit.conf (same as used by other executables).
Radek Brich <radek.brich@devl.cz>
parents:
44
diff
changeset
|
3 |
# database for tests.py (postgres, mysql - remove one of the lines to skip particular tests) |
08e4dfe1b0cb
Add test for MyManager (enable only when MySQLdb is available). Configure tests using pgtoolkit.conf (same as used by other executables).
Radek Brich <radek.brich@devl.cz>
parents:
44
diff
changeset
|
4 |
'test' : 'host=127.0.0.1 dbname=test user=test password=test', |
08e4dfe1b0cb
Add test for MyManager (enable only when MySQLdb is available). Configure tests using pgtoolkit.conf (same as used by other executables).
Radek Brich <radek.brich@devl.cz>
parents:
44
diff
changeset
|
5 |
'test_mysql' : 'host=127.0.0.1 db=test user=test password=test', |
2 | 6 |
} |
7 |
||
44
4fe39c59c515
Update longqueries tool: add client IP, waiting attributes.
Radek Brich <radek.brich@devl.cz>
parents:
6
diff
changeset
|
8 |
### meta database (contains connection parameters for other databases) |
2 | 9 |
meta_db = 'host=10.8.0.1 dbname=central' |
44
4fe39c59c515
Update longqueries tool: add client IP, waiting attributes.
Radek Brich <radek.brich@devl.cz>
parents:
6
diff
changeset
|
10 |
# query for connection parameters, input is database name (will be placed instead of %s) |
2 | 11 |
meta_query = '''SELECT host, port, dbname, user, password FROM config.databases WHERE name = %s LIMIT 1''' |